home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Online / TaylorUUCP / README.Amiga < prev    next >
Encoding:
Text File  |  1998-04-03  |  2.2 KB  |  79 lines

  1. Amiga port of Taylor UUCP 1.06.1 package:
  2.  
  3. * Changes in Amiga Port Of Taylor UUCP v 1.06.1 Package
  4.  
  5.     File and system locking is done with OwnDevUnit.library.
  6.     ulog() uses syslog.library beside its own log files.
  7.     TCP/IP code removed. (need rewriting).
  8.     serial code rewriten 100%.
  9.     documentation is now in AmigaGuideĀ® format.
  10.  
  11.     *  default directories and file names
  12.  
  13.         uulib:uucp/      config dir    (orig. /lib/uucp)
  14.         uuspool:         spool dir     (orig. /var/spool/uucp)
  15.         uupub:           public dir    (orig. /var/spool/uucppublic)
  16.         bin:             command path  (orig. /bin /usr/bin /usr/local/bin)
  17.         logs:UUCP-Log    main logfile  (orig. /var/spool/uucp/Log)
  18.         logs:UUCP-Stats  stats logfile (orig. /var/spool/uucp/Stats)
  19.         logs:UUCP-Debug  debug logfile (orig. /var/spool/uucp/Debug)
  20.     
  21.  
  22.     * changes in configuration files
  23.  
  24.         file: uulib:uucp/ports
  25.  
  26.             ``device'' field is changed from /dev/ttyxx style to native Amiga
  27.             serial device names.
  28.  
  29.             for example:
  30.  
  31.             device serial/0
  32.             # indicates that serial.device unit 0 should be used when dialing out.
  33.  
  34.             device telser/9
  35.             # indicates that telser.device unit 9 should be used when dialing out.
  36.  
  37.             * NOTE: you should NOT supply ``.device'' in device name.
  38.  
  39.  
  40.  
  41. * software requirements
  42.  
  43.     ixemul.library  47.2
  44.     ixnet.library 47.2
  45.     OwnDevUnit.library
  46.     syslog.library
  47.  
  48.     pdksh  (for executing shell scripts (uuclean and others))
  49.  
  50.   * getty must be able to set $DEVICE and $UNIT enviroment variables as they
  51.   are used by uucico when determinig to which port (device and unit) is
  52.   attached when started from getty, and must NOT pass -D, -U , and -Getty
  53.   parameters to uucico. A possible workaround could be to make shell script
  54.   that sets the enviroment and then call uucico executable.
  55.  
  56.     -- cut here uucico.scr --
  57.  
  58.     .key -D,-U,-Getty
  59.     .bra {
  60.     .ket }
  61.  
  62.     set DEVICE {-D}
  63.     set UNIT {-U}
  64.     bin:uucico
  65.  
  66.     unset DEVICE
  67.     unset UNIT
  68.  
  69.     -- cut here uucico.scr --
  70.  
  71.     NOTE: this is untested as i use my own version of getty :-) (not included here
  72.         because i don't have time to write proper documentation for it)
  73.  
  74. * getty must set either a $LOGNAME , $USER , or must do setlogin() in ixemul
  75.     compatible way.
  76.  
  77. * In fact, you'll need a REAL getty program.
  78.  
  79.